home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / simulato / v2_3_mc6.tz / v2_3_mc6 / testfiles / test2.asm < prev    next >
Assembly Source File  |  1994-05-02  |  355b  |  17 lines

  1. ;
  2. ; test2.asm
  3. ; C. Ward 9/15/92
  4. ;
  5. ; Tests a few instructions.  No input is accepted and no output is
  6. ; generated.  Program should terminate properly.  Check a0=00003000,
  7. ; a1=00002000,d0=00000000, and $3000=00000000 after execution.
  8. ;
  9.     org $1000
  10.     move #$3000,a0
  11.     move #$2000,a1
  12.     clr.l d0
  13.     move #228,d7
  14.     move d0,(a0)
  15.     trap #14
  16.     end
  17.